home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue66 / Clinic / ScopeTestOtherForm.pas < prev   
Encoding:
Pascal/Delphi Source File  |  2000-11-09  |  478 b   |  35 lines

  1. unit ScopeTestOtherForm;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
  7.  
  8. type
  9.   TOtherForm = class(TForm)
  10.     procedure FormCreate(Sender: TObject);
  11.   public
  12.     Foo: Integer;
  13.   end;
  14.  
  15. var
  16.   OtherForm: TOtherForm;
  17.  
  18. function Foo: Integer;
  19.  
  20. implementation
  21.  
  22. {$R *.DFM}
  23.  
  24. function Foo: Integer;
  25. begin
  26.   Result := 100;
  27. end;
  28.  
  29. procedure TOtherForm.FormCreate(Sender: TObject);
  30. begin
  31.   Foo := 7;
  32. end;
  33.  
  34. end.
  35.